Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / SparseArray<T> Class / Fill Method
The start index of range.
The length of range.
The value to fill.


In This Topic
    Fill Method (SparseArray<T>)
    In This Topic
    Fills a range of array with a specified value.
    Syntax
    'Declaration
     
    
    Public Sub Fill( _
       ByVal index As Integer, _
       ByVal length As Integer, _
       ByVal value As T _
    ) 
    'Usage
     
    
    Dim instance As SparseArray(Of T)
    Dim index As Integer
    Dim length As Integer
    Dim value As T
     
    instance.Fill(index, length, value)
    public void Fill( 
       int index,
       int length,
       T value
    )

    Parameters

    index
    The start index of range.
    length
    The length of range.
    value
    The value to fill.
    See Also